home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 5
/
Aminet 5 - March 1995.iso
/
Aminet
/
game
/
shoot
/
hs21.lha
/
BBS_Startups
/
TransAmiga.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1993-05-02
|
678b
|
28 lines
/* Hack & Slash 2.0 Launcher
by: Roger Clark */
options results
call pragma('stack',10000)
UserInfo 'a' ; Name = upper(result)
SystemInfo 'm' ; Time = result
SystemInfo '8' ; Line = result
id=time(s)
Transmit "Loading Hack & Slash..."
SetNodeLocation Name' is playing Hack & Slash'
path='t:rpg-startup'||line
open('temp',path,'W')
writeln('temp','stack 10000')
writeln('temp','BBS:Extras/Hack&Slash/HSClient -e -h -t'Time' 'Name)
writeln('temp','endcli')
close('temp')
address command 'NewShell from 'path' FIFO:hack'id'/rwkecs'
address command 'BBS:Bin/TrShell -n'line' -fhack'id
address command 'Delete t:rpg-startup'||line
exit
/* end of Hack & Slash */